home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / usr / lib / python2.4 / encodings / iso8859_13.pyo (.txt) < prev    next >
Python Compiled Bytecode  |  2005-10-18  |  3KB  |  95 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyo (Python 2.4)
  3.  
  4. """ Python Character Mapping Codec generated from '8859-13.TXT' with gencodec.py.
  5.  
  6. Written by Marc-Andre Lemburg (mal@lemburg.com).
  7.  
  8. (c) Copyright CNRI, All Rights Reserved. NO WARRANTY.
  9. (c) Copyright 2000 Guido van Rossum.
  10.  
  11. """
  12. import codecs
  13.  
  14. class Codec(codecs.Codec):
  15.     
  16.     def encode(self, input, errors = 'strict'):
  17.         return codecs.charmap_encode(input, errors, encoding_map)
  18.  
  19.     
  20.     def decode(self, input, errors = 'strict'):
  21.         return codecs.charmap_decode(input, errors, decoding_map)
  22.  
  23.  
  24.  
  25. class StreamWriter(Codec, codecs.StreamWriter):
  26.     pass
  27.  
  28.  
  29. class StreamReader(Codec, codecs.StreamReader):
  30.     pass
  31.  
  32.  
  33. def getregentry():
  34.     return (Codec().encode, Codec().decode, StreamReader, StreamWriter)
  35.  
  36. decoding_map = codecs.make_identity_dict(range(256))
  37. decoding_map.update({
  38.     161: 8221,
  39.     165: 8222,
  40.     168: 216,
  41.     170: 342,
  42.     175: 198,
  43.     180: 8220,
  44.     184: 248,
  45.     186: 343,
  46.     191: 230,
  47.     192: 260,
  48.     193: 302,
  49.     194: 256,
  50.     195: 262,
  51.     198: 280,
  52.     199: 274,
  53.     200: 268,
  54.     202: 377,
  55.     203: 278,
  56.     204: 290,
  57.     205: 310,
  58.     206: 298,
  59.     207: 315,
  60.     208: 352,
  61.     209: 323,
  62.     210: 325,
  63.     212: 332,
  64.     216: 370,
  65.     217: 321,
  66.     218: 346,
  67.     219: 362,
  68.     221: 379,
  69.     222: 381,
  70.     224: 261,
  71.     225: 303,
  72.     226: 257,
  73.     227: 263,
  74.     230: 281,
  75.     231: 275,
  76.     232: 269,
  77.     234: 378,
  78.     235: 279,
  79.     236: 291,
  80.     237: 311,
  81.     238: 299,
  82.     239: 316,
  83.     240: 353,
  84.     241: 324,
  85.     242: 326,
  86.     244: 333,
  87.     248: 371,
  88.     249: 322,
  89.     250: 347,
  90.     251: 363,
  91.     253: 380,
  92.     254: 382,
  93.     255: 8217 })
  94. encoding_map = codecs.make_encoding_map(decoding_map)
  95.